home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Unofficial Addons & Patches / Penguins - HD Installer (1996)(LSD)(AGA)[m][req. HF version].zip / Penguins - HD Installer (1996)(LSD)(AGA)[m][req. HF version].adf / InstallPeng next >
Text File  |  1978-01-09  |  2KB  |  100 lines

  1. ; Penguins AGA installer Script
  2. ; Written by DeMOnS & Cyanide of LsD
  3. ; Additional Help From KiWi / InDi
  4.  
  5. (complete 0)
  6.  
  7. (set @default-dest "Workbench:"
  8. )
  9.  
  10. (complete 10)
  11.  
  12. (set mp-dest
  13.     (askdir
  14.         (prompt "Where would you like to install Penguins?")
  15.             (help @askdir-help)
  16.         (default @default-dest)
  17.     )
  18. )
  19.  
  20. (set @default-dest mp-dest)
  21.  
  22. (Working "Creating Penguins Directory Structure")
  23.     (makedir (tackon mp-dest "Penguins"))
  24.     (makedir (tackon mp-dest "penguins/Data"))
  25.  
  26. (complete 20)
  27. (
  28. (working "Installing Disk1....")
  29.  
  30.     (copyfiles
  31.         (prompt "")
  32.         (help @copyfiles-help)
  33.         (source "Disk1:data/")(all)
  34.         (dest (tackon mp-dest "penguins/data"))
  35.  
  36.     )
  37. )
  38.  
  39.  
  40.  
  41. (complete 40)
  42. (
  43. (working "Installing Disk2....")
  44.  
  45.     (copyfiles
  46.         (prompt "")
  47.         (help @copyfiles-help)
  48.         (source "Disk2:data/")(all)
  49.         (dest (tackon mp-dest "penguins/data"))
  50.     )
  51. )
  52.  
  53. (complete 60)
  54. (
  55. (working "Installing Disk3....")
  56.  
  57.     (copyfiles
  58.         (prompt "")
  59.         (help @copyfiles-help)
  60.         (source "Disk3:data/")(all)
  61.         (dest (tackon mp-dest "penguins/data"))
  62.  
  63.     )
  64. )
  65.  
  66. (complete 80)
  67. (
  68. (working "Installing Patched Files....")
  69.  
  70.     (copyfiles
  71.         (prompt "")
  72.         (help @copyfiles-help)
  73.         (source "PengInstr:Patches/")(all)
  74.         (dest (tackon mp-dest "penguins"))
  75.  
  76.     )
  77. )
  78.  
  79. (complete 90)
  80. (startup "PENGUINS"
  81.     (prompt
  82.           "Some assigns need to be added to your "
  83.           "\"S:User-Startup\" so that your system will be properly "
  84.            "configured to play Penguins.\n\n"
  85.     "Press Proceed for them to be added.\n")
  86. (help
  87.            "This will add commands to your S:user-startup file to "
  88.            "allow Penguins to find all the files.")
  89.  
  90. (command "ASSIGN DISK1: " (tackon mp-dest "penguins")"\n")
  91. (command "ASSIGN DISK2: " (tackon mp-dest "penguins")"\n")
  92. (command "ASSIGN DISK3: " (tackon mp-dest "penguins")"\n")
  93. (command "ASSIGN CYN: " (tackon mp-dest "penguins")"\n")
  94. (command "ASSIGN DATA: " (tackon mp-dest "penguins/data")"\n")
  95. )
  96.  
  97.  
  98. (complete 100)
  99. (exit)
  100.